:root {
  --deep-black: var(--bg);
  --gold-primary: var(--accent);
  --gold-secondary: var(--accent-hover);
  --gold-glow: rgba(255, 215, 0, 0.4);
  --card-bg: var(--panel);
  --text-primary: var(--text);
  --text-secondary: var(--text-muted);
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-theme="light"] {
  --deep-black: var(--bg);
  --card-bg: var(--panel);
  --text-primary: var(--text);
  --text-secondary: var(--text-muted);
  --gold-glow: rgba(212, 175, 55, 0.2);
}

/* ================= PRICING SECTION ================= */

.premium-pricing {
  background: var(--deep-black);
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.03) 0%, var(--deep-black) 70%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

[data-theme="light"] .premium-pricing {
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08) 0%, #ffffff 70%);
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.header-content {
  text-align: center;
  margin-bottom: 70px;
}

.gold-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--gold-primary);
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
  position: relative;
  display: inline-block;
}

.gold-title::after {
  content: '';
  position: absolute;
  width: 60%;
  height: 3px;
  background: var(--gold-primary);
  bottom: -15px;
  left: 20%;
  border-radius: 2px;
  box-shadow: 0 0 10px var(--gold-primary);
}

[data-theme="light"] .gold-title {
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.silver-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Glow Box */
.pricing-glow-box {
  position: relative;
  background: var(--card-bg);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 40px;
  padding: 80px 50px;
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
}

.pricing-glow-box::before,
.pricing-glow-box::after {
  content: "";
  position: absolute;
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  box-shadow: 0 0 25px var(--gold-glow);
  z-index: 2;
  animation: pulseGlow 3s infinite ease-in-out;
  transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              right 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pricing-glow-box::before {
  top: -1px;
  left: 20%;
}

.pricing-glow-box::after {
  bottom: -1px;
  right: 20%;
}

.pricing-glow-box:hover::before {
  left: 60%;
}

.pricing-glow-box:hover::after {
  right: 60%;
}

/* Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.pricing-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 30px;
  padding: 45px 35px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05),
              0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15),
              inset 0 0 30px rgba(255, 215, 0, 0.1);
}

/* CTA */
.pricing-cta {
  margin-top: auto;
  padding: 14px 28px;
  background: linear-gradient(to right, var(--gold-primary), var(--gold-secondary));
  color: #000;
  font-weight: 700;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
}

.pricing-cta:hover {
  box-shadow: 0 10px 25px rgba(255, 204, 51, 0.4);
  transform: translateY(-2px);
}
